body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background-color: #4AB6FF;
}

#logo-and-name {
    display: flex;
    align-items: center;
}

#logo {
    width: auto;
    height: 3.75rem;
    border: 0.125rem solid yellow;
    border-radius: 0.9375rem;
}

#site-name {
    margin-left: 0.625rem;
    font-size: 1.5rem;
    color: white;
}

#quiz-nav, #hamburger-menu {
    position: relative;
    margin-left: auto;
}

#quiz-menu-button, #hamburger-menu-button {
    background-color: #4AB6FF;
    color: white;
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

#quiz-menu-content, #hamburger-menu-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 0.5rem 1rem 0 rgba(0,0,0,0.2);
    border-radius: 0.25rem;
    min-width: 10rem;
    top: 2.1875rem;
    right: 0;
    z-index: 1000;
}

#quiz-menu-content a, #hamburger-menu-content a {
    color: black;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
}

#quiz-menu-content a:hover, #hamburger-menu-content a:hover {
    background-color: #ddd;
}

#btn-login:hover {
    background-color: #e7e7e7;
}


#hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 1.875rem;
    height: 1.5625rem;
    cursor: pointer;
    padding-right: 0.625rem;
}

.bar {
    height: 0.25rem;
    width: 100%;
    background-color: white;
    border-radius: 0.625rem;
    margin: 0.3125rem 0;
}

.hidden, #user-display.hidden  {
    display: none;
}

.show, #hamburger-menu.show, #hamburger-menu-content.show, #dropdown-menu.show, #quiz-menu-content.show   {
    display: block;
}

#user-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.875rem;
    height: 1.875rem;
    background-color: rgb(146, 143, 216);
    border-radius: 50%;
    margin-right: 0.625rem;
    position: relative;
    cursor: pointer;
}

#dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: calc(50% - 3.75rem);
    transform: translateX(-50%);
    background-color: #f9f9f9;
    min-width: 10rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    z-index: 1;
    text-align: center;
    padding: 0.625rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

#btn-login {
    padding: 0.3125rem 0.625rem; /* 5px 10px */
    background-color: #fff; /* White background for the login button */
    color: #005a9c; /* Blue text color that matches the header */
    font-size: 0.875rem; /* 14px */
    border: none;
    border-radius: 0.25rem; /* 4px */
    cursor: pointer;
    display: none; /* Corrected property */
}

.button-download {
    padding: 0.625rem 1.25rem;
    background-color: #fff;
    color: #005a9c;
    font-size: 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

/* ######################*/
/* Comments */
/* ######################*/
#flagPopup, #resultsPopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    justify-content: center;
    align-items: center;
}

#flagPopup form {
    background-color: #fefefe;
    padding: 1.25rem; /* 20px */
    border: 0.0625rem solid #888; /* 1px */
    width: 80%;
    max-width: 25rem; /* 400px */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0,0,0,0.2), 0 0.375rem 1.25rem 0 rgba(0,0,0,0.19);
}

#resultsPopup form {
    background-color: #fefefe;
    padding: 1.25rem; /* 20px */
    border: 0.0625rem solid #888; /* 1px */
    width: 80%;
    max-width: 25rem; /* 400px */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0,0,0,0.2), 0 0.375rem 1.25rem 0 rgba(0,0,0,0.19);
}

#commentBox {
    width: 100%;
    height: 6.25rem; /* 100px */
    padding: 0.75rem 1.25rem; /* 12px 20px */
    margin: 0.5rem 0; /* 8px 0 */
    border: 0.0625rem solid #ccc; /* 1px */
    box-sizing: border-box;
    resize: vertical;
}

.buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625rem; /* 10px */
    margin-top: 1.25rem; /* 20px */
}

#flagForm button {
    background-color: #4CAF50;
    color: white;
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border: none;
    cursor: pointer;
    flex: 0 1 auto;
}

#cancelButton {
    background-color: red;
}

#flagForm button:hover {
    opacity: 0.8;
}

/* ######################*/
/* Quiz */
/* ######################*/

#quiz-nav {
    position: relative; /* For absolute positioning of the dropdown content */
}

#quiz-menu-button {
    background-color: #4AB6FF; /* Same as header background for a consistent look */
    color: white;
    padding: 0.625rem 0.9375rem; /* 10px 15px */
    font-size: 1rem; /* 16px */
    border: none;
    cursor: pointer;
}

#quiz-menu-content {
    display: none;  /* Comment this out temporarily */
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 0.5rem 1rem 0 rgba(0,0,0,0.2);
    border-radius: 0.25rem; /* 4px */
    min-width: 10rem; /* 160px */
    right: 0;
    z-index: 1000;
}

#quiz-menu-content.show {
    display: block;
}

#quiz-menu-content a {
    color: black;
    padding: 0.75rem 1rem; /* 12px 16px */
    text-decoration: none;
    display: block; /* Dropdown items should be block level for full-width interaction */
}

#quiz-menu-content a:hover {
    background-color: #ddd; /* Light grey background for hover state */
}

#quiz-results {
    font-size: 1.5rem; /* 24px */
    font-weight: bold;
    color: #005a9c;
    text-align: center;
    margin-top: 1.375rem; /* 70px */
    padding-bottom: .25rem;
}

/* ######################*/
/* Quiz results */
/* ######################*/

#closePopupBtn {
    display: inline-block;
    margin: 0.625rem; /* 10px */
    padding: 0.3125rem 0.625rem; /* 5px 10px */
    background-color: #ff4545; /* Red background */
    color: white; /* White text */
    border: none;
    border-radius: 0.3125rem; /* 5px */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#closePopupBtn:hover {
    background-color: #ff7575; /* Lighter red on hover */
}

#resultsPopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#resultsDetail {
    width: 80%;
    max-height: 80%;
    margin: 5% auto;
    background-color: white;
    overflow: auto;
    padding: 1.25rem; /* 20px */
    box-shadow: 0 0 0.625rem 0 rgba(0,0,0,0.5);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 0.0625rem solid black; /* 1px */
    padding: 0.5rem; /* 8px */
    text-align: left;
}

th {
    cursor: pointer;
}

/* ######################*/
/* Other page items */
/* ######################*/

#page-container {
    margin-top: 1.875rem; /* 30px */
}

#expert-help {
    display: none;
    margin-right: 1.25rem; /* 20px */
    min-height: 20rem; /* 320px */
}

#google-ads {
    width: 18.75rem; /* 300px */
    height: 37.5rem; /* 600px */
    background-color: #ddd;
    padding: 0.9375rem; /* 15px */
    border-radius: 0.3125rem; /* 5px */
    margin-left: 1.25rem; /* 20px */
    margin-bottom: 0.9375rem; /* 15px */
    display: block;
    text-align: center;
}

#content-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 1.25rem; /* 20px */
}

#tabs-and-content {
    display: flex;
    flex-direction: column;
    width: 60%;
}

#tabs {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 0;
    padding-right: 0;
    margin-right: 1.25rem; /* 20px */
}

.tab-button {
    padding: 0.3125rem 1.25rem; /* 5px 20px */
    border: none;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem; /* 16px */
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    margin-right: 0.125rem; /* 2px */
    border-radius: 0.25rem 0.25rem 0 0; /* 4px 4px 0 0 */
}

.tab-button:hover {
    background-color: #e7e7e7;
    color: #005a9c;
}

.tab-button.active {
    background-color: #005a9c;
    color: white;
    border-bottom: 0.0625rem solid transparent;
    align-items: left;
}

.tab-buttons {
    display: flex;
    align-items: baseline;
    padding: 0;
}

.tab-content {
    display: none;
    padding: 0.625rem; /* 10px */
    background-color: white;
    border: 0.0625rem solid #ccc; /* 1px */
}

/* ############################################## */
/* Answer area  */
/* ############################################## */

.question-btn {
    display: inline-block;
    margin: 0.3125rem; /* 5px */
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border: 0.0625rem solid #ccc; /* 1px */
    border-radius: 0.3125rem; /* 5px */
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-btn:hover {
    background-color: #e0e0e0;
}

input[type="checkbox"]:checked + label {
    background-color: #4CAF50;
    color: white;
}

/* Hide the checkbox */
input[type="checkbox"] {
    display: none;
}

#answer-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.125rem; /* 5px */
    padding: 0.1rem; /* 2px */
}

/* #answer-section input,
#answer-section label {
    display: block;
} */

.question-btn input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

#question-actions {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 1.25rem; /* 20px */
}

#submit-answer, #next-question, #start-over, #new-quiz, #past-results {
    font-size: 1rem; /* 16px */
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border: none; /* No border */
    border-radius: 0.3125rem; /* 5px */
    cursor: pointer; /* Pointer cursor on hover */
}

#submit-answer:hover, #next-question:hover, #start-over:hover, #new-quiz:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}

#next-question {
    font-size: 1rem; /* 16px */
    background-color: #6babd6; /* Green background */
    color: white; /* White text */
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border: none; /* No border */
    border-radius: 0.3125rem; /* 5px */
    cursor: pointer; /* Pointer cursor on hover */
}

#next-question:hover {
    background-color: #488fbe; /* Slightly darker green on hover */
}


/* Style for selected (checked) label */
.question-btn input[type="checkbox"]:checked + .question-btn {
    background-color: #007bff;
    color: white;
}

.question-btn input[type="checkbox"]:checked:hover + .question-btn {
    background-color: #0056b3;
}

/* ############################################## */
/* Tab Controls  */
/* ############################################## */

.tab-controls {
    display: flex;
    flex-direction: column;
    gap: 0.625rem; /* 10px */
    padding: 1.25rem; /* 20px */
    background-color: #f2f2f2;
    border-radius: 0.625rem; /* 10px */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    max-width: 25rem; /* 400px */
    margin: auto;
}

.control-group {
    display: flex;
    align-items: center;
}

.control-group label {
    font-weight: bold;
    margin-right: 0.625rem; /* 10px */
}

.control-group select {
    padding: 0.625rem; /* 10px */
    border: 0.0625rem solid #ddd; /* 1px */
    border-radius: 0.3125rem; /* 5px */
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.tab-controls button {
    padding: 0.625rem 1.25rem; /* 10px 20px */
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0.3125rem; /* 5px */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.tab-controls button:hover {
    background-color: #0056b3;
}

/* ############################################## */
/* Style for selects and the Start Quiz button */
/* ############################################## */
#categoryInput, #difficultyInput, button {
    margin-left: 0.625rem; /* 10px */
}

.buttoncontent {
    display: none; 
    padding: 0.9375rem; /* 15px */
    margin-right: 1.25rem; /* 20px */
    background-color: white;
    border: 0.0625rem solid #ccc; /* 1px */
    text-align: center;
}

#button-container {
    /* Style as needed */
    margin-top: auto; /* Ensures it sticks to the bottom */
}

#quiz-container {
    min-height: 20rem; /* 320px */
    margin-right: 1.25rem; /* 20px */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This will push the button-container to the bottom */
    padding: 0.625rem; /* 10px */
    border-radius: 0.25rem; /* 4px */
    padding-bottom: 2.5rem; /* 40px */
}

#question-header2 {
    padding: 0.25rem; /* 4px */
    border-radius: 0.25rem 0.25rem 0 0; /* 4px 4px 0 0 */
}


#question-header {
    text-align: left;
}


#top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Add some space between the top section and additional info */
}

#header-text {
    flex-grow: 0; /* Prevent the header text from growing */
    flex-shrink: 1; /* Allow the header text to shrink if necessary */
    flex-basis: auto; /* Set the default size of the header text to auto */
    margin-right: 20px; /* Add some space between the header text and the buttons */
    color: #4AB6FF;
    font-size: 18;
}



#feedback-buttons {
    display: block;
    text-align: center; /* Centers the buttons */
}

#feedback-buttons button {
    background-color: #f0f0f0; /* Light grey background */
    color: #333; /* Dark text color */
    border: 1px solid #ddd; /* Light grey border */
    padding: 0.2rem 0.4rem; /* Adjusted padding in rem */
    margin: 0.2rem; /* Adjusted margin in rem */
    border-radius: 0.25rem; /* Adjusted border-radius in rem */
    font-size: 0.8rem; /* Adjusted font size in rem */
    cursor: pointer; /* Cursor changes to a hand icon when hovered */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

#feedback-buttons button:hover {
    background-color: #e0e0e0; /* Slightly darker grey on hover */
}




/* ############################################## */
/* Old stuff not using right now*/
/* ############################################## */

#site-name_old {
    margin-left: 0.625rem; /* 10px */
    font-size: 1.5rem; /* 24px */
    color: white; /* White text color for the site name */
}

.mimic-br_old {
    display: block;
    margin-bottom: 1em; /* Adjust the space as needed */
}

/* ############################################## */
/* Fundraising styles */
/* ############################################## */

#fund-raiser {
    padding-top: 0.325rem; /* 10px */
    font-size: 1rem; /* 16px */
    text-align: left;
    background-color: #f4f4f4; /* Adjust the color to match the screenshot */
    border: 0.0625rem solid #ccc; /* 1px */
    margin: 0.625rem 0; /* 10px 0 */
    padding: .5375rem; 
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.custom-list {
    /* list-style-type: disc; /* Or choose another symbol like 'circle', 'square', etc. */
    padding: 0; /* Removes default padding */
    display: flex; /* Enables flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Centers items horizontally */
    list-style-type: none;
    margin-right: .7rem;


}


.custom-list {
    text-align: left; 
    padding-left: 1rem; /* 20px */
    padding-right: 1rem; /* 20px */
    margin: 0.825rem 0; /* 10px 0 for closer spacing */
}


.custom-list li {
    margin-bottom: 0.3125rem; /* 5px - Adjusts spacing between list items */
    text-align: left; /* Centers the text within each li */
    list-style-type: disc;  Or choose another symbol like 'circle', 'square', etc. */
}

.list-image-wrapper {
    display: flex;
    justify-content: center; /* Centers flex items horizontally */
    align-items: center; /* Centers flex items vertically */
    margin: auto; /* Centers the flex container itself */
    padding: .5rem;
}

.image-container {
    /* Adjust width and height as needed */
    width: 30%; /* Example width */
    height: 30%; /* Example height */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Adjust how the image fits within the container */
}

/* Style for links inside the fund-raiser div */
#fund-raiser a {
    color: #0000EE; /* Typical link color */
    text-decoration: underline; /* Underline for interactivity */
}

#fundraising-container {
    max-width: 50rem; /* 800px */
    margin: auto;
    padding: 1.25rem; /* 20px */
    font-family: Arial, sans-serif;
}

#fundraising-container h1, h2, h3 {
    color: #4AB6FF;
    text-align: center;
}

#fundraising-container p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.donate-button, .justgiving-link {
    text-align: center;
    margin: 1.25rem 0; /* 20px 0 */
}

.donate-button a, .justgiving-link a {
    padding: 0.625rem 1.25rem; /* 10px 20px */
    background-color: #4AB6FF;
    color: white;
    border-radius: 0.3125rem; /* 5px */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.donate-button a:hover, .justgiving-link a:hover {
    background-color: #3a9ae1;
}

/* ############################################## */
/* disclaimer */
/* ############################################## */

.accept-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.625rem; /* 10px */
}

#acceptDisclaimer {
    display: block; /* Hide the actual checkbox */
}

#acceptDisclaimer + label {
    background-color: #007bff; /* Button color */
    color: white;
    padding: 0.625rem 1.25rem; /* 10px 20px */
    border: none;
    border-radius: 0.3125rem; /* 5px */
    cursor: pointer;
    transition: background-color 0.3s;
}

#acceptDisclaimer + label:hover {
    background-color: #0056b3; /* Slightly darker on hover */
}

#acceptDisclaimer:checked + label {
    background-color: #004085; /* Even darker when selected */
}

#fetchquiz:disabled {
    color: #aaa;
    background-color: #ddd;
    cursor: not-allowed;
}

#disclaimer div {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

#disclaimer label {
    margin-left: 0.3125rem; /* 5px */
}

#disclaimer {
    background-color: #fff;
    margin: 2rem;
    padding: 1rem;
    border-radius: 0.3125rem; /* 5px */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

#disclaimer h2 {
    color: #5a5a5a;
}

#disclaimer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

#acceptDisclaimer {
    margin-right: 0.625rem; /* 10px */
}

label {
    cursor: pointer;
}

/* ############################################## */
/* Footer styles */
/* ############################################## */

#page-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0.5rem 0; /* 8px 0 */
}

.footer-content {
    display: flex;
    justify-content: space-evenly;
    align-items: top;
    flex-wrap: wrap; /* Wrap items in smaller screens */
}

.footer-section {
    flex: 1;
    min-width: 12.5rem; /* 200px */
    padding: 0 1.25rem; /* 0 20px */
    text-align: left; /* Align text to the left for better readability */
}

.footer-section h3 {
    margin-bottom: 0.625rem; /* 10px */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin */
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4AB6FF;
}

.footer-bottom {
    border-top: 0.0625rem solid #444; /* 1px */
    padding-top: 0.3125rem; /* 5px */
    text-align: center; /* Center-align the bottom text */
}




#expLinks {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    flex-wrap: nowrap;
    flex-direction: row;
    }
    
#expLinks button {
    margin: 10px; /* Spacing around buttons */
    /* Add more button styling as needed */
}

.hyperlinkButton {
    display: flex;
    align-items: center;
    justify-content: center; /* Adjust as needed */
    width: 11.25rem; /* Adjust width as needed */
    min-height: 5rem; /* Adjust height as needed */
    border: none;
    background-color: #4CAF50;
    color: white;
    padding: 0.9375rem; /* Adjust padding as needed */
    text-decoration: none;
    font-size: 0.75rem;
    margin: 0.25rem 0.125rem;
    cursor: pointer;
    border-radius: 0.3125rem;
    overflow: hidden; /* Added to handle overflow */
}
    
.contentWrapper {
    display: flex;
    width: 100%; /* Ensure it fills the button */
    justify-content: center; /* Adjust as needed */
    align-items: center;
    flex-wrap: nowrap; /* Prevents wrapping */
}

.siteIcon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.625rem;
}

.siteTitle {
    flex-grow: 1; /* Allow title to take up remaining space */
    text-align: left;
    word-wrap: break-word;
    overflow: hidden; /* Handle overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflowed text */
    white-space: nowrap; /* Prevent wrapping */
}




@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    #content-area {
        display: flex;
        flex-direction: column;
    }

    #tabs-and-content, #google-ads {
        width: 95%;
        max-width: 95%;
        margin: 0.2rem auto; /* Center and provide some margin */
        padding: 0;
    }

    #google-ads {
        width: 95%;
        max-width: 80%;
        order: 2; /* Places the ads below the tabs and content */
        display: block; /* Ensures ads are displayed */
    }



    /* Ensure the quiz container takes up full screen height */
    #quiz-container {
        max-width: 92%; /* Allows the container to take full width */
        width: 95%;
        margin: 0; /* Removes any margin */
    }

    #tabs-and-content {
        max-width: 95%; /* Allows the container to take full width */
        width: 95%;
        margin: .5rem; /* Removes any margin */
    }



    /* Adjusts the question header for a stacked layout */
    #question-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Reduces the font size of the header text */
    #question-header #header-text {
        font-size: 1rem; /* Smaller font size for mobile */
    }

    /* Adjusts feedback buttons for smaller screens */
    #feedback-buttons button {
        font-size: 0.7rem; /* Smaller font size for mobile */
        padding: 0.3rem 0.6rem; /* Smaller padding for mobile */
    }

    /* Adjusts the additional info section */
    #additional-info p {
        font-size: 0.8rem; /* Smaller font size for mobile */
    }

    /* Increase the size of the questions in the answer section */
    #answer-section label {
        font-size: 1rem; /* Larger font size for better readability */
        padding: 0.5rem 1rem; /* Slightly larger padding for touch targets */
    }

    /* Styles for the question actions section */
    #question-actions {
        display: flex;
        justify-content: center;
        margin-top: 0.8rem; /* Adjusted margin for mobile */
    }

    /* Styles for the submit and other buttons in question actions */
    #question-actions button {
        font-size: 0.8rem; /* Smaller font size for mobile */
        padding: 0.4rem 0.8rem; /* Adjusted padding for mobile */
    }

 

    /* Other mobile-specific styles can be added here as needed */
}

